home *** CD-ROM | disk | FTP | other *** search
- writeCSS();
-
- function writeCSS(strPath)
- {
- if (navigator.appName == "Microsoft Internet Explorer") {
- var sVer = navigator.appVersion;
- sVer = sVer.substring(0, sVer.indexOf("."));
- if (sVer >= 4) {
- document.writeln('<SCRIPT FOR=reftip EVENT=onclick>window.event.cancelBubble = true;</SCRIPT>');
- strPath = 'style4.css';
- }
- else
- strPath = 'stylen.css';
- }
- else
- strPath = "stylen.css";
-
- document.writeln('<LINK REL="stylesheet" HREF="' + strPath + '">');
- }
-
- function bodyOnLoad()
- {
- // Return if the browser isn't IE4 or later.
- if (navigator.appName != "Microsoft Internet Explorer")
- return false;
- var sVersion = navigator.appVersion;
- sVersion = sVersion.substring(0, sVersion.indexOf(".", 0));
- if (sVersion < 4)
- return false;
-
- // Write footer
- WriteFooter();
-
- }
-
-
- function bodyOnClick()
- {
- }
-
- function WriteFooter ()
- {
- document.body.innerHTML += '<br><hr width=97% size=1 Align="Center" color=black>'
- + '<small><small><i>'
- + ' <a href="mailto:trw2000@knlsoft.com?subject=Feedback: ">Send feedback</a>'
- + ' to <a href="http://www.knlsoft.com/">KnlSoft.com</a>'
- + '</small></small></i>';
- }
-